home *** CD-ROM | disk | FTP | other *** search
/ ASP Advantage 1994 2nd Q2 / The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin / files / progming / cenviw / numlock.cmm < prev    next >
Encoding:
Text File  |  1993-09-26  |  191 b   |  8 lines

  1. // NumLock.cmm - Turn on the NUMLOCK key if it's not already on
  2.  
  3. #include <Message.lib>
  4. #include <KeyPush.lib>
  5.  
  6. if ( !(GetKeyboardState()[VK_NUMLOCK] & 1) )
  7.    KeyStroke(VK_NUMLOCK);
  8.